Search results for "{search_term_string}"

Blog Post

How to Optimize PrizmDoc for Large Document Viewing and Server-Side Search

default options are used. Search completes asynchronously. The returned PCCViewer.SearchRequest object, provides events for search progress and members to access search results. serverSearch(searchQuery) → {PCCViewer.SearchRequest} Searches the text of the...

Whitepaper

Zero Footprint, Fast Viewing: Using an ASP.NET Imaging SDK to Build a Web-Based Image Viewer

...Again, we are going to use LINQ to SQL. – Hide Listing 9: Search.aspx.cs (Part 2) [System.Web.Services.WebMethod] public static object GetDocumentsForKeyword(string keyword) { string cs = WebConfigurationManager .ConnectionStrings["ImageDatabaseConnectionString"] .ConnectionString; using...

Blog Post

Convert HTML to PDF in C# with PrizmDoc API

...what nodes of the JSON file belong to which parts. All that’s left is to POST the JSON string: string results = await client.UploadStringTaskAsync(endpoint, “POST”, tester.ToString());</p> <p>return JObject.Parse(results); The conversion...

Blog Post

How to Convert HTML to PDF in Java using PrizmDoc API

...With the file on the PrizmDoc server, we can now issue a convert request through the Content Conversion API with our ContentConvert method: public String ContentConvert(String affinityToken, String fileId, String...

Product

PrizmDoc Viewer

...by keyword or phrase and create custom search parameters. Use hit-highlighting and wild card search technology to find the information you need faster. See Demo » https://www.accusoft.com/demos/advanced-search-demo/ 1210 Annotate Easily...

Page

Demo: Advanced Search

parameters. Search parameters include: Exact word/phrase matching Whole-word-only Begins-with/ends-with Wildcard support Expanded search features like proximity search allow users to determine how many words can be between the first and...

Technical FAQ

How can I annotate or redact search results within PrizmDoc?

= PCCViewer.search('Con'); var marks = []; var mark; requestObject.on(PCCViewer.EventType.SearchCompleted, function (event) { var searchResults = event.completedSearchResults; for (var i = 0; i < searchResults.length; i++) { mark = viewer.viewerControl.addMarkFromSearchResult(searchResults[i], PCCViewer.Mark.Type.TextSelectionRedaction);...

Technical FAQ

With PrizmDoc, how can I hide a predefined search if there are no results?

preliminary server-side search comes back positive. if (viewerReady && searchReady && !searchDisplayed) { searchDisplayed = true; $("[data-pcc-search=\"input\"]").val(fixedSearchTerm); $("[data-pcc-search=\"submit\"]").click(); } } function sendSearchPost() { $.ajax({ "method": "POST", "url": pasUrl + "/v2/viewingSessions/"...

Blog Post

SURGE: Effective Automated Testing in a Microservice World - Part 1

...into the search box And I click the search button Then I see some search results Feature: Able to Search on a Company Website Scenario: Searching on Accusoft.com Given I...

Blog Post

Creating a Custom Viewer with PrizmDoc’s ViewerCore and React

...(this.searchRequest) { return; } this.searchRequest = this.viewerControl.search(searchTerm); this.searchRequest.on(‘SearchCompleted’, () => { const results = this.searchRequest.getResults(); if (results.length > 0) { this.viewerControl.setSelectedSearchResult(results[0], true); } this.searchRequest = undefined; }); } render ()...

Product

Document Viewer API

...issues when working with Microsoft Office (MSO) files MSO Conversion is included with cloud-hosted and can be purchased as an add-on option for Self-Hosted Search Fixed search terms, proximity search,...

Blog Post

How to create a command line program in C# that can read a CAD file

...PDFVersion Dimensions”);<br /> System.Console.WriteLine(“Press any key to exit.”);<br /> System.Console.ReadKey();<br /> System.Environment.Exit(1);<br /> }<br /> string inputFile = @”input”+args[0];<br /> string outputFile = @”output”+args[1];<br /> String pdfVersion = args[2];<br />...